Replaces the element at the specified index.

Namespace:  C1.Data.DataSource
Assembly:  C1.Data.Entity (in C1.Data.Entity.dll)

Syntax

C#
protected override void SetItem(
	int index,
	T item
)
Visual Basic
Protected Overrides Sub SetItem ( _
	index As Integer, _
	item As T _
)

Parameters

index
Type: System..::..Int32
The zero-based index of the element to replace.
item
Type: T
The new value for the element at the specified index.

See Also